home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / fft.mem < prev    next >
Encoding:
Text File  |  1991-07-21  |  937 b   |  27 lines

  1. ;***************************************************************
  2. ;* FFT.MEM -- Memory allocation controls for FFT analyzer      *
  3. ;*                                   *
  4. ;* Copyright (C) 1991 by Alef Null. All rights reserved.       *
  5. ;* Author(s): Jarkko Vuori, OH2LNS                   *
  6. ;* Modification(s):                           *
  7. ;***************************************************************
  8.  
  9. ; P memory usage
  10. ;   0000 - 03FF program code
  11. ;   0400 - 07FF input data buffer
  12. ;   0800 - 0BFF window coefficients
  13. ;   0C00 - 0DFF result ACC A
  14. ;   0E00 - 0FFF result ACC B
  15.  
  16. ; X, Y memory usage
  17. ;   0000 - 01FF misc data (pointers, counters, etc.)
  18. ;   0200 - 03FF sin/cos coefficient table
  19. ;   0400 - 07FF FFT data
  20.  
  21. ; x: and y: must begin after l: which is max. 15 words long
  22. ; p: must begin after interrupt vectors
  23. base        x:15,y:15,l:$0,p:$40
  24.  
  25. ; FFTdata section contains all modulo addressed parts of FFT analyzer
  26. section     FFTData     p:$400,x:$200,y:$200
  27.